type net/http.http2ClientConn

58 uses

	net/http (current package)
		h2_bundle.go#L746: 	GetClientConn(req *Request, addr string) (*http2ClientConn, error)
		h2_bundle.go#L747: 	MarkDead(*http2ClientConn)
		h2_bundle.go#L769: 	conns        map[string][]*http2ClientConn // key is host:port
		h2_bundle.go#L771: 	keys         map[*http2ClientConn][]string
		h2_bundle.go#L775: func (p *http2clientConnPool) GetClientConn(req *Request, addr string) (*http2ClientConn, error) {
		h2_bundle.go#L784: func (p *http2clientConnPool) getClientConn(req *Request, addr string, dialOnMiss bool) (*http2ClientConn, error) {
		h2_bundle.go#L840: 	res  *http2ClientConn // valid after done is closed
		h2_bundle.go#L934: func (p *http2clientConnPool) addConnLocked(key string, cc *http2ClientConn) {
		h2_bundle.go#L941: 		p.conns = make(map[string][]*http2ClientConn)
		h2_bundle.go#L944: 		p.keys = make(map[*http2ClientConn][]string)
		h2_bundle.go#L950: func (p *http2clientConnPool) MarkDead(cc *http2ClientConn) {
		h2_bundle.go#L984: func http2filterOutClientConn(in []*http2ClientConn, exclude *http2ClientConn) []*http2ClientConn {
		h2_bundle.go#L1004: func (p http2noDialClientConnPool) GetClientConn(req *Request, addr string) (*http2ClientConn, error) {
		h2_bundle.go#L6963: type http2ClientConn struct {
		h2_bundle.go#L7022: 	cc *http2ClientConn
		h2_bundle.go#L7303: func (t *http2Transport) dialClientConn(ctx context.Context, addr string, singleUse bool) (*http2ClientConn, error) {
		h2_bundle.go#L7362: func (t *http2Transport) NewClientConn(c net.Conn) (*http2ClientConn, error) {
		h2_bundle.go#L7366: func (t *http2Transport) newClientConn(c net.Conn, singleUse bool) (*http2ClientConn, error) {
		h2_bundle.go#L7367: 	cc := &http2ClientConn{
		h2_bundle.go#L7443: func (cc *http2ClientConn) healthCheck() {
		h2_bundle.go#L7458: func (cc *http2ClientConn) SetDoNotReuse() {
		h2_bundle.go#L7464: func (cc *http2ClientConn) setGoAway(f *http2GoAwayFrame) {
		h2_bundle.go#L7491: func (cc *http2ClientConn) CanTakeNewRequest() bool {
		h2_bundle.go#L7500: func (cc *http2ClientConn) ReserveNewRequest() bool {
		h2_bundle.go#L7544: func (cc *http2ClientConn) State() http2ClientConnState {
		h2_bundle.go#L7571: func (cc *http2ClientConn) idleState() http2clientConnIdleState {
		h2_bundle.go#L7577: func (cc *http2ClientConn) idleStateLocked() (st http2clientConnIdleState) {
		h2_bundle.go#L7599: func (cc *http2ClientConn) canTakeNewRequestLocked() bool {
		h2_bundle.go#L7606: func (cc *http2ClientConn) tooIdleLocked() bool {
		h2_bundle.go#L7620: func (cc *http2ClientConn) onIdleTimeout() {
		h2_bundle.go#L7624: func (cc *http2ClientConn) closeIfIdle() {
		h2_bundle.go#L7641: func (cc *http2ClientConn) isDoNotReuseAndIdle() bool {
		h2_bundle.go#L7650: func (cc *http2ClientConn) Shutdown(ctx context.Context) error {
		h2_bundle.go#L7686: func (cc *http2ClientConn) sendGoAway() error {
		h2_bundle.go#L7712: func (cc *http2ClientConn) closeForError(err error) error {
		h2_bundle.go#L7726: func (cc *http2ClientConn) Close() error {
		h2_bundle.go#L7732: func (cc *http2ClientConn) closeForLostPing() error {
		h2_bundle.go#L7761: func (cc *http2ClientConn) responseHeaderTimeout() time.Duration {
		h2_bundle.go#L7801: func (cc *http2ClientConn) decrStreamReservations() {
		h2_bundle.go#L7807: func (cc *http2ClientConn) decrStreamReservationsLocked() {
		h2_bundle.go#L7813: func (cc *http2ClientConn) RoundTrip(req *Request) (*Response, error) {
		h2_bundle.go#L8166: func (cc *http2ClientConn) awaitOpenSlotForStreamLocked(cs *http2clientStream) error {
		h2_bundle.go#L8188: func (cc *http2ClientConn) writeHeaders(streamID uint32, endStream bool, maxFrameSize int, hdrs []byte) error {
		h2_bundle.go#L8425: func (cc *http2ClientConn) encodeHeaders(req *Request, addGzipHeader bool, trailers string, contentLength int64) ([]byte, error) {
		h2_bundle.go#L8616: func (cc *http2ClientConn) encodeTrailers(trailer Header) ([]byte, error) {
		h2_bundle.go#L8646: func (cc *http2ClientConn) writeHeader(name, value string) {
		h2_bundle.go#L8660: func (cc *http2ClientConn) addStreamLocked(cs *http2clientStream) {
		h2_bundle.go#L8673: func (cc *http2ClientConn) forgetStreamID(id uint32) {
		h2_bundle.go#L8704: 	cc *http2ClientConn
		h2_bundle.go#L8708: func (cc *http2ClientConn) readLoop() {
		h2_bundle.go#L8780: func (cc *http2ClientConn) countReadFrameError(err error) {
		h2_bundle.go#L9489: func (cc *http2ClientConn) Ping(ctx context.Context) error {
		h2_bundle.go#L9564: func (cc *http2ClientConn) writeStreamReset(streamID uint32, code http2ErrCode, err error) {
		h2_bundle.go#L9580: func (cc *http2ClientConn) logf(format string, args ...interface{}) {
		h2_bundle.go#L9584: func (cc *http2ClientConn) vlogf(format string, args ...interface{}) {
		h2_bundle.go#L9699: func http2traceGotConn(req *Request, cc *http2ClientConn, reused bool) {